home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 24
/
Amiga Format AFCD24 (Feb 1998, Issue 108).iso
/
-in_the_mag-
/
emulation
/
amiga
/
uae-0.7.0b2
/
src
/
include
/
filesys.h
< prev
next >
Wrap
C/C++ Source or Header
|
1998-01-20
|
538b
|
27 lines
/*
* UAE - The Un*x Amiga Emulator
*
* Unix file system handler for AmigaDOS
*
* Copyright 1997 Bernd Schmidt
*/
#define A_FIBF_SCRIPT (1<<6)
#define A_FIBF_PURE (1<<5)
#define A_FIBF_ARCHIVE (1<<4)
#define A_FIBF_READ (1<<3)
#define A_FIBF_WRITE (1<<2)
#define A_FIBF_EXECUTE (1<<1)
#define A_FIBF_DELETE (1<<0)
struct hardfiledata {
unsigned long size;
int nrcyls;
int secspertrack;
int surfaces;
int reservedblocks;
FILE *fd;
};
extern struct hardfiledata *get_hardfile_data (int nr);